@charset "utf-8";

/*=================reset start=======================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
table,
tr,
td,
ul,
li,
ol,
dl,
dt,
dd,
span,
em,
i,
html,
input,
textarea,
button,
select,
option,
strong {
	margin: 0;
	padding: 0;
}

input {
	min-width: auto;
}

img {
	display: block;
	width: 100%;
}

input,
textarea,
button,
select,
option {
	border: none;
	background-color: transparent;
	outline: none;
}


a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}


ul li,
ol li {
	list-style: none;
}

body,
html {
	font-family: -apple-system, BlinkMacSystemFont, PingFang SC, sans-serif, "宋体", "微软雅黑", Microsoft YaHei, Arial, Tahoma;
	font-size: 14px;
	background-color: #f6f6f6;
	color: #3b3232;
	min-width: 1200px;
	height: 100%;
	margin: 0 auto;
}

.clearBoth::after {
	content: "";
	height: 0;
	display: block;
	visibility: hidden;
	clear: both;
	*zoom: 1;
}

.hide {
	display: none;
}

.show {
	display: block;
}

/*============================reset end================================*/